home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
InterLaunch 1.1.2
/
src
/
file.c
< prev
next >
Wrap
Text File
|
1994-11-12
|
717b
|
32 lines
/* ----------------------------------------------------------------------
file.c
---------------------------------------------------------------------- */
#include "the_defines.h"
#include "the_globals.h"
#include "the_prototypes.h"
/* ----------------------------------------------------------------------
DoMenuFile
---------------------------------------------------------------------- */
void DoMenuFile(theItem)
int theItem;
{
switch (theItem)
{
case FILE_QUIT:
FileQuit();
break;
default:
break;
}
}
/* ----------------------------------------------------------------------
FileQuit
---------------------------------------------------------------------- */
void FileQuit()
{
gDone = true;
}